home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / README.DOC < prev    next >
Text File  |  1990-07-02  |  956b  |  23 lines

  1.  
  2. DLINK is compatible with Turbo C 2.0.  It is an implementation of a linked 
  3. list, with a fairly elaborate (and reusable) character based interface.  
  4. Included is a sample data file, "SAVE.DAT".
  5.  
  6. I included a project file for compiling the program in the integrated 
  7. environment.  However, to compile from the command line using TCC, type
  8.  
  9.         TCC DLINK DSCREEN DCURSOR
  10.  
  11. Include "-v" as an option directly following the TCC if you want to debug 
  12. the program in the integrated environment or Turbo Debugger.
  13.  
  14. To run the executable program at the DOS command line, type "DLINK".  If
  15. you want to load the data file immediately, type "DLINK SAVE.DAT".
  16.  
  17. There a few minor (harmless) inconsistencies in the program.  For example,
  18. I used both Borland's "clrscr()" function, and one I created myself using 
  19. a DOS interrupt generated using register access functions from "dos.h", 
  20. and called it "cls()".  This stuff is purely arbitrary.
  21.  
  22. Enjoy.
  23.